
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    body {
      height: 100vh;
      /* background-image: url(/BG.png); Replace with actual path */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }




    .main-flex-container {
      /* display: flex; */
      gap: 20px;
      /* background-color: rgba(255, 255, 255, 0.95); */
      border-radius: 10px;
      /* padding: 20px; */
    }

    /* Left smaller, right bigger */
    /* .imgslider {
      flex: 0 0 40%;
      margin-top: 59px;
    } */

    .scroll-container {
      flex: 0 0 60%;
      /* border: 3px solid brown; */
      background-color: hsl(170, 23%, 95%);
      overflow-y: auto;
      padding: 10px;
      height: 84vh;
      /* display: flex; */
      flex-wrap: wrap;
      gap: 10px;
    }

    
    .scroll-container img.thumb {
      width: 200px;
      height: 200px;
      cursor: pointer;
      transition: transform 0.3s ease;
      margin-top: auto;
      margin-left: auto;
      margin-bottom: auto;
      margin-right: auto;
      flex-wrap: nowrap;
    }

    .scroll-container img.thumb:hover {
      box-shadow: 0.5px 0.5px 4px 7px rgb(220, 220, 220);
      transform: scale(1.05);
    }

    /* Enlarged Viewer */
    .image-viewer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .image-viewer-box {
      background-color:whitesmoke;
      border-radius: 10px;
      padding: 10px;
      position: relative;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .image-viewer-box img {
      max-width: 600px;
      max-height: 80vh;
      border-radius: 10px;
      object-fit: contain;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 30px;
      font-weight: bold;
      color: red;
      cursor: pointer;
    }

    @media screen and (max-width: 768px) {
      .main-flex-container {
        flex-direction: column;
      }

      /* .imgslider, .scroll-container {
        flex: 0 0 100%;
      } */

      .image-viewer-box {
        flex-direction: column;
        text-align: center;
      }

      .image-viewer-box img {
        max-width: 90vw;
      }
    }
 